Tables [dbo].[AtomPanelWebsite]
Properties
PropertyValue
Created10:31:14 AM Tuesday, March 02, 2010
Last Modified11:40:00 AM Monday, February 20, 2012
Columns
NameData TypeMax Length (Bytes)Allow Nulls
Cluster Primary Key PK_AtomPanelWebsite: AtomPanelKey\WebsiteKeyForeign Keys FK_AtomPanelWebsite_AtomPanel: [dbo].[AtomPanel].AtomPanelKeyAtomPanelKeyuniqueidentifier16
No
Cluster Primary Key PK_AtomPanelWebsite: AtomPanelKey\WebsiteKeyForeign Keys FK_AtomPanelWebsite_Website: [dbo].[Website].WebsiteKeyWebsiteKeyuniqueidentifier16
No
WebUserControlPathnvarchar(255)510
Yes
LastCompiledOndatetime8
Yes
Indexes Indexes
NameColumnsUnique
Cluster Primary Key PK_AtomPanelWebsite: AtomPanelKey\WebsiteKeyPK_AtomPanelWebsiteAtomPanelKey, WebsiteKey
Yes
Foreign Keys Foreign Keys
NameColumns
FK_AtomPanelWebsite_AtomPanelAtomPanelKey->[dbo].[AtomPanel].[AtomPanelKey]
FK_AtomPanelWebsite_WebsiteWebsiteKey->[dbo].[Website].[WebsiteKey]
SQL Script
CREATE TABLE [dbo].[AtomPanelWebsite]
(
[AtomPanelKey] [uniqueidentifier] NOT NULL,
[WebsiteKey] [uniqueidentifier] NOT NULL,
[WebUserControlPath] [nvarchar] (255) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[LastCompiledOn] [datetime] NULL
) ON [PRIMARY]

GO
ALTER TABLE [dbo].[AtomPanelWebsite] ADD CONSTRAINT [PK_AtomPanelWebsite] PRIMARY KEY CLUSTERED ([AtomPanelKey], [WebsiteKey]) ON [PRIMARY]
GO
ALTER TABLE [dbo].[AtomPanelWebsite] ADD CONSTRAINT [FK_AtomPanelWebsite_AtomPanel] FOREIGN KEY ([AtomPanelKey]) REFERENCES [dbo].[AtomPanel] ([AtomPanelKey])
GO
ALTER TABLE [dbo].[AtomPanelWebsite] ADD CONSTRAINT [FK_AtomPanelWebsite_Website] FOREIGN KEY ([WebsiteKey]) REFERENCES [dbo].[Website] ([WebsiteKey])
GO
Uses